6653938cda3f4bced9cc20120cf6789d5772aea7,app/src/main/java/net/exclaimindustries/geohashdroid/util/ExpeditionMode.java,ExpeditionMode,handleInfo,#Info#Info[]#number#,377

Before Change


                // it back in the else field quickly, as it's cached now.
                requestStock(inf.getGraticule(), inf.getCalendar(), StockService.FLAG_USER_INITIATED | (needsNearbyPoints() ? StockService.FLAG_INCLUDE_NEARBY_POINTS : 0));
            } else {
                setInfo(info);
                doNearbyPoints(nearby);
            }
        }

After Change


                // it back in the else field quickly, as it's cached now.
                requestStock(inf.getGraticule(), inf.getCalendar(), StockService.FLAG_USER_INITIATED | (needsNearbyPoints() ? StockService.FLAG_INCLUDE_NEARBY_POINTS : 0));
            } else {
                if((flags & StockService.FLAG_AUTO_INITIATED) == 0) {
                    setInfo(info);
                }

                doNearbyPoints(nearby);